Skip to content

Instantly share code, notes, and snippets.

@upsetbit
upsetbit / my-github-stars.md
Last active July 10, 2026 00:05
GitHub Stars

Tuning Windows 10 for Slow Machines

Windows 10 on slow netbook

This guide is for those who dares to install Windows 10 on slow netbooks (1GB of RAM).
Though Windows update program is over, you still may use old Windows product keys from license stickers to install Windows 10 on old machines.

UPD Jan 2019
This article is quite old, some instructions may be obsolete.

@mary-ext
mary-ext / bluesky-osa.md
Last active July 10, 2026 00:04
Bluesky's age assurance sucks, here's how to work around it.

Bluesky's age assurance sucks, here's how to work around it.

Bluesky has implemented age verification measures in response to regional laws that restrict access, prompting users to verify their age through Epic Games' Kids Web Services before they can access adult content.

This sucks, but thankfully there are ways to work around it.

Before diving in: I encourage you to read this entire document, including the

@qoomon
qoomon / conventional-commits-cheatsheet.md
Last active July 10, 2026 00:04
Conventional Commits Cheatsheet
// Mesh gradient editor — interactive MESH_GRADIENT showcase.
//
// A sidebar lists up to 16 color points: click a row to select it, click the
// "+" row to add a point, and DELETE/BACKSPACE removes the selected point
// (the last one always stays). The picker at the bottom-left edits the
// selected color: an HSV square + hue strip working in Display P3, plus
// per-channel HDR gain sliders (100%..400% of SDR) for EDR displays. Points
// are drawn as ring handles over the gradient; drag them to move the colors
// around. Handles fade out when the mouse has been still for two seconds,
// and the layout follows the window size.
local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local humanoid = character:WaitForChild("Humanoid")
local jumpCount = 0
local maxJumps = 2 -- Default number of jumps
local speedValue = 16 -- Default walk speed
local speedBoostActive = false
-- Function to update speed when speed value is set
@nkitan
nkitan / gist:87d0712c39ed2a0bb8215f4f2b118e4f
Created September 4, 2025 16:34
Set up XDG Base Directory Directories and Export Relevant ENV Variables
#!/bin/bash
#
# setup_xdg_dirs.sh
#
# This script ensures the standard XDG base directories exist and creates
# a file in ~/.config/bashrc.d/ to export the necessary environment variables.
# Based on the standards from: https://wiki.archlinux.org/title/XDG_Base_Directory
# Exit immediately if a command exits with a non-zero status.
set -e
@miketartar
miketartar / ColdTurkeyBlockerActivator.py
Created September 26, 2020 04:21
Cold Turkey Blocker Activator
import json
import sqlite3
import os
DB_PATH = "C:/ProgramData/Cold Turkey/data-app.db"
def activate():